home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
findfi_1
/
form3.frm
< prev
next >
Wrap
Text File
|
1998-08-22
|
1KB
|
42 lines
VERSION 5.00
Begin VB.Form Form3
BorderStyle = 1 'Fixed Single
Caption = "3D Text"
ClientHeight = 555
ClientLeft = 45
ClientTop = 330
ClientWidth = 1455
BeginProperty Font
Name = "MS Sans Serif"
Size = 18
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Icon = "Form3.frx":0000
LinkTopic = "Form3"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 555
ScaleWidth = 1455
StartUpPosition = 2 'CenterScreen
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Activate()
ForeColor = 0: X = CurrentX: Y = CurrentY
For I = 25 To 100
Print "3D Text"
X = X + 1: Y = Y + 1: CurrentX = X: CurrentY = Y
Next I
ForeColor = QBColor(9)
Print "3D Text"
End Sub